home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist / dist6.3 / ViewKit_dev.idb / usr / include / Vk / VkProgram.h.z / VkProgram.h
C/C++ Source or Header  |  1996-09-20  |  2KB  |  47 lines

  1. ////////////////////////////////////////////////////////////////////////////////
  2. ///////   Copyright 1992, Silicon Graphics, Inc.  All Rights Reserved.   ///////
  3. //                                                                            //
  4. // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;     //
  5. // the contents of this file may not be disclosed to third parties, copied    //
  6. // or duplicated in any form, in whole or in part, without the prior written  //
  7. // permission of Silicon Graphics, Inc.                                       //
  8. //                                                                            //
  9. // RESTRICTED RIGHTS LEGEND:                                                  //
  10. // Use,duplication or disclosure by the Government is subject to restrictions //
  11. // as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data     //
  12. // and Computer Software clause at DFARS 252.227-7013, and/or in similar or   //
  13. // successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -    //
  14. // rights reserved under the Copyright Laws of the United States.             //
  15. //                                                                            //
  16. ////////////////////////////////////////////////////////////////////////////////
  17. #ifndef _VKPROGRAM_H
  18. #define _VKPROGRAM_H
  19.  
  20. #include <Vk/VkSubProcess.h>
  21. #include <Vk/VkCallbackObject.h>
  22.  
  23. class VkProgram : public VkCallbackObject {
  24.     public:
  25.             VkProgram(const char* cmd, int killChildOnExit = 1);
  26. virtual            ~VkProgram();
  27.  
  28. virtual VkSubProcess    run();
  29.  
  30. inline    void         redirectIn(int do_redirect) { _redirectIn = do_redirect; }
  31.  
  32.     static const char *const exitCallback;
  33.     static const char *const stdoutCallback;
  34.     static const char *const stderrCallback;
  35.  
  36.     protected:
  37.  
  38.     /* Variables to hold information provided in constructor */
  39.  
  40.     char*        _cmd;
  41.     const int    _killChildOnExit;// Kill child if parent terminates?
  42.     int             _redirectIn;
  43.  
  44. };
  45.  
  46. #endif
  47.